/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  6
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 1;
 
vertices
(
(0 0 0) //0
(0 0.005 3.49e-4) //1
(16 0.005 3.49e-4) //2
(16 0 0) //3
(0 0.005 -3.49e-4) //4
(16 0.005 -3.49e-4) //5
);
 
blocks
(
hex (0 4 1 0 3 5 2 3) (25 1 10000) simpleGrading (0.1 1 1)
);
 
edges
(
);
 
boundary
(
     front
     { 
           type wedge;
           faces  
           (
               (1 0 3 2)
           );
      }
     back
     { 
           type wedge;
           faces  
           (
               (4 5 3 0)
           );
      }
     walls
     { 
           type wall;
           faces  
           (
               (1 2 5 4)
           );
      }
     inlet
     { 
           type patch;
           faces  
           (
               (0 1 4 0)
           );
      }
     outlet
     { 
           type patch;
           faces  
           (
               (3 5 2 3)
           );
      }
     axis
     { 
           type empty;
           faces  
           (
               (0 3 3 0)
           );
      }
);
 
mergePatchPairs
(
);

// ************************************************************************* //
